home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20041116-20060924 / 000065_fdc@columbia.edu_Sat Mar 12 09:17:29 2005.msg < prev    next >
Internet Message Format  |  2020-01-01  |  4KB

  1. Path: newsmaster.cc.columbia.edu!not-for-mail
  2. From: Frank da Cruz <fdc@columbia.edu>
  3. Newsgroups: comp.protocols.kermit.misc
  4. Subject: Re: kermit for GSM modem
  5. Date: 12 Mar 2005 14:17:18 GMT
  6. Organization: Columbia University
  7. Lines: 68
  8. Message-ID: <slrnd35ufe.bu9.fdc@sesame.cc.columbia.edu>
  9. References: <a0139a97.0503120347.39bfd896@posting.google.com>
  10. Reply-To: fdc@columbia.edu
  11. NNTP-Posting-Host: sesame.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1110637038 20892 128.59.59.56 (12 Mar 2005 14:17:18 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 12 Mar 2005 14:17:18 GMT
  15. User-Agent: slrn/0.9.8.0 (SunOS)
  16. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:15301
  17.  
  18. On 2005-03-12, vicks <vikrant.shahir@gmail.com> wrote:
  19. : GSM modem will used for
  20. : RPMS(Remote Patient Monitoring System)project IITb,
  21. : for data transfer between two computers.
  22. :
  23. : Currently i am doing well with basics of
  24. : GSM modem attached to Linux machine and able
  25. : to issue following commands through KERMIT:
  26. : 1]Diagnostic commands (viz. AT+CGMI ...etc.)
  27. : 2]simply dialing out a number.(ATD<no>;  --voice)
  28. : 3]sending SMS and receiving SMS (not thro' KERMIT but GSMLIB).
  29. :
  30. : QUESTIONs:
  31. : Now, I want to step ahead and connect two computers.
  32. : To achieve this, one computer should sit in "wait for call mode".
  33. : And other computer should "dial to " the waiting computer.
  34. : I tried this but was not able to do.
  35. : so i would like to know
  36. : 1]The DIALING computer should issue a voice/data call to WAITING computer ?
  37. :
  38. Yes.
  39.  
  40. : 2]If data call then, both the computers need to be set to work in 
  41. : data mode thro' FCLASS ..etc ?
  42. :
  43. The details depend on the make and model of the modem, the operating system 
  44. of the dialed computer, and which Kermit program is doing the dialing.
  45.  
  46. C-Kermit and Kermit 95 know about many kinds of modems and are preconfigured
  47. to issue the appropriate commands for making data calls, if you correctly
  48. identify the modem type to Kermit (using its SET MODEM TYPE command).  In
  49. Windows, you can also use the TAPI modem database.  In other cases, you can
  50. consult your modem manual to find the relevant commands and build up a
  51. user-defined modem type, as documented in "Using C-Kermit".
  52.  
  53. The called computer is one of two kinds:
  54.  
  55.  . A timesharing system or BBS that knows how to handle incoming calls;
  56.    it gives a login dialog and, upon successful login, sends the caller
  57.    to a shell or menu.  If the called computer is Unix based (e.g.
  58.    Linux) then of course you have to configure it for incoming calls; see
  59.    (for example) the Linux Serial-HOWTO and Modem-HOWTO:
  60.  
  61.      http://www.tldp.org/HOWTO/Serial-HOWTO.html
  62.      http://tldp.org/HOWTO/Modem-HOWTO.html
  63.  
  64.  . A desktop computer that has no facility for receiving incoming calls
  65.    or handling remote sessions that come in by modem, e.g. Windows or
  66.    DOS.  In this case you can use Kermit on that computer to receive the
  67.    incoming call.  There are many ways to do this, depending on what you
  68.    want to do with the session: Kermit server, host mode, etc.
  69.  
  70. If you give more specific information, we can give you better guidance.
  71.  
  72. : and for BACKGROUND knowledge, would like to know
  73. : 3]Normally how this gsm modem is used ..in windows..or any OS,
  74. : i mean is any software available to attain its functionality ?
  75. : or is it similar to our Dlink modem where we dial out ISP no. and 
  76. : connect to net ?
  77. :
  78. You have to read your modem's documentation to find out what it is capable
  79. of.  Different models have different features and functions.  Also, search
  80. in Google for such topics as how to make data connections with GSM modems,
  81. how to make Internet connections, etc, to find pages such as this:
  82.  
  83.   http://www.physiol.usyd.edu.au/daved/linux/gsm-modem.html
  84.  
  85. - Frank